home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000146_news@columbia.edu _Wed Dec 20 09:01:17 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with SMTP id JAA15543 for <kermit.misc@watsun>; Wed, 20 Dec 1995 09:01:17 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id JAA04821 for kermit.misc@watsun; Wed, 20 Dec 1995 09:01:06 -0500
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: kermit echo problem
  8. Date: 20 Dec 1995 14:01:03 GMT
  9. Organization: Columbia University
  10. Lines: 66
  11. Message-ID: <4b94uv$4mg@apakabar.cc.columbia.edu>
  12. References: <NEWTNews.819335323.13920.tfirmin@ghand.smart.net> <4b6jt9$6ql@apakabar.cc.columbia.edu> <NEWTNews.819416482.32170.tfirmin@ghand.smart.net>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <NEWTNews.819416482.32170.tfirmin@ghand.smart.net>,
  17.  <tfirmin@ghand.smart.net> wrote:
  18. : In Article<4b6jt9$6ql@apakabar.cc.columbia.edu>,
  19. : <fdc@watsun.cc.columbia.edu> wrote:
  20. : > In article <NEWTNews.819335323.13920.tfirmin@ghand.smart.net>,
  21. : >  <tfirmin@ghand.smart.net> wrote:
  22. : > : I am running c-kermit on a SPARC 2, SunOS 4.1.  
  23. : > : It is echoing back all of the characters that 
  24. : > : are typed (vveerryy hhaarrdd ttoo rreeaadd).  
  25. : > : I've tried setting echo off using stty -echo, 
  26. : > : and setting echo to local.  Neither worked.  
  27. : > : Has anyone had this problem, and if so, how do 
  28. : > : I fix it?
  29. : > : 
  30. : > Does the double echoing occur in command mode
  31. : > or CONNECT mode?  Or both?  
  32. : connect only
  33. : > Does it happen only
  34. : > in C-Kermit, or does it also happen at the
  35. : > shell prompt?  
  36. : only in c-kermit
  37. : > Does it occur on the Sun's own
  38. : > workstation screen, or are you coming in to the
  39. : > Sun from some other terminal or emulator?
  40. : I am using xterm on a Sparc 2 to connect to another sun
  41. : running Solaris
  42. So you are engaging in terminal emulation through a series
  43. of emulators (xterm and C-Kermit).  Only the computer at the
  44. far end should be echoing.  None of the emulators should be
  45. echoing.  C-Kermit, when in CONNECT mode, does not echo
  46. unless you tell it to with "set duplex half" or "set
  47. terminal echo on" (same thing), or unless you are using
  48. C-Kermit to make a TELNET connection and the TELNET server
  49. on the other end has asked C-Kermit to do the echoing, but
  50. then goes ahead and echoes itself anyway.  Another
  51. possibility would be that you are using a modem or terminal
  52. server that has been configured to do its own echoing.
  53.  
  54. So I'll still need more information.  Is the connection
  55. between the two SPARCs a serial connection or a TELNET
  56. connection?  If it is a TELNET connection, are you using
  57. the standard TELNET TCP port (23) or some other port?
  58. Did you issue any "set telnet" commands to C-Kermit prior
  59. to making the connection?
  60.  
  61. You can find out what TELNET negotiations took place as
  62. follows:
  63.  
  64.  1. Tell C-Kermit to "log debug".
  65.  2. Make the connection to the other computer.
  66.  3. Observe the double echoing.
  67.  4. Log out from the other computer.
  68.  5. Exit from C-Kermit.
  69.  6. grep ^TELNET debug.log > file
  70.  
  71. The "file" contains all the TELNET negotiations.  If the
  72. results are not clear, send the file by email to
  73. kermit@columbia.edu.
  74.  
  75. - Frank